home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Queries / PGetTransform.h < prev    next >
C/C++ Source or Header  |  1996-09-04  |  804b  |  42 lines

  1. /*
  2.  *--- PGetTransform.h -----------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:49 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PGetTransform__
  10. #define __PGetTransform__
  11.  
  12.  
  13. #include "PMTypes.h"
  14.  
  15. class PGetTransform
  16. {
  17.  
  18. public:
  19.  
  20.     PGetTransform();
  21.     
  22.     long    dRotateAngle;
  23.     long    dSkewAngle;
  24.     PMBool    bXReflect;
  25.     long    xLeftTopOrig;
  26.     long    yLeftTopOrig;
  27.     long    xRightBotOrig;
  28.     long    yRightBotOrig;
  29.     long    xLeftTop;
  30.     long    yLeftTop;
  31.     long    xRightTop;
  32.     long    yRightTop;
  33.     long    xRightBottom;
  34.     long    yRigihtBottom;
  35.     long    xLeftBottom;
  36.     long    yLeftBottom;
  37. };
  38.  
  39. #endif
  40.  
  41. // end of PGetTransform.h
  42.